home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.09 Sep 94 / Getting Started / CJunior.cp < prev    next >
Encoding:
Text File  |  1994-08-19  |  292 b   |  21 lines  |  [TEXT/R*ch]

  1. //CJunior.cp
  2.  
  3. #ifndef __CJunior__
  4. #include "CJunior.h"
  5. #endif
  6.  
  7. #include <iostream.h>
  8.  
  9.  
  10. CJunior::CJunior()
  11. {
  12.     cout << "CJunior's constructor was called!\n";
  13.     cout << "grampsDataMember == " << grampsDataMember << "\n";
  14. }
  15.  
  16.  
  17. CJunior::~CJunior()
  18. {
  19.     cout << "CJunior's destructor was called!\n";
  20. }
  21.